PreviousNextTracker indexSee it online !

(291/299) 1865 - Toggle Line Comment works wrongly

jEdit 5.3.0, TextTools 1.16.

In TextTools jEdit plugin there is the following bug:

After "Edit / Source / Line Comment", I have the following code block:

~~~
# my $Iterator = $Query->limited_dataset( [$Params->{DBStart}, $Params->{ItemsPerPage}] )->iterator;
# my @Cities = ();
# while (my $Item = $Iterator->fetch) {
# my $City = {};
# for (keys %$Item) {
# $City->{$_} = $Item->{$_};
# }
# push @Cities, $City;
# }
# return \@Cities;
~~~

Then I run "Plugins / TexTools / Toggle Line Comment". And then it (wrongly) becomes (instead of uncommenting):

~~~
## my $Iterator = $Query->limited_dataset( [$Params->{DBStart}, $Params->{ItemsPerPage}] )->iterator;
## my @Cities = ();
## while (my $Item = $Iterator->fetch) {
# # my $City = {};
# # for (keys %$Item) {
# # $City->{$_} = $Item->{$_};
# # }
# # push @Cities, $City;
## }
## return \@Cities;
~~~

Submitted porton - 2016-08-18 14:03:27.792000 Assigned
Priority 5 Labels
Status open Group None
Resolution None

Comments